/* ============================================================
   MÉTODO ÓPTIMA · Escuela de Negocios Naturales
   styles.css — Diseño Premium · HTML5 + CSS3 puro
   ============================================================ */

/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
  /* Colores */
  --bg:           #F7F3ED;
  --white:        #FFFFFF;
  --text:         #2B2B2B;
  --text-sec:     #6B6B6B;
  --gold:         #C9A86A;
  --gold-dark:    #B68F4A;
  --green:        #6F7B68;
  --border:       #E8E1D7;

  /* Tipografía */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  /* Espacios */
  --section-gap-desk:  100px;
  --section-gap-tab:   70px;
  --section-gap-mob:   50px;
  --pad-desk:          60px;
  --pad-mob:           40px;
  --container:         1200px;

  /* Bordes / sombras */
  --radius-card:  24px;
  --radius-btn:   999px;
  --shadow-card:  0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-img:   0 16px 48px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 8px 32px rgba(0, 0, 0, 0.18);

  /* Transición base */
  --ease: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   2. UTILIDADES
   ============================================================ */

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* Etiqueta de sección pequeña */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Títulos de sección */
.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ============================================================
   3. BOTONES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease),
              border-color var(--ease), transform var(--ease),
              box-shadow var(--ease);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Primario */
.btn-primary {
    background: linear-gradient(
        135deg,
        #D8B36A 0%,
        #C9A86A 50%,
        #B68F4A 100%
    );

    color: #FFFFFF;
    border-color: #C9A86A;

    position: relative;
    overflow: hidden;
}
box-shadow: 0 8px 24px rgba(201,168,106,.25);@keyframes brilloDorado {

    0% {
        left: -120%;
    }

    50% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 168, 106, 0.45);
}

/* Secundario / outline dorado */
.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--text);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Outline claro (para fondos oscuros) */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Tamaño grande */
.btn-large {
  padding: 18px 40px;
  font-size: 15px;
}

/* ============================================================
   4. ANIMACIONES
   ============================================================ */

/* Hero — elementos que ya están visibles al cargar */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-reveal */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   5. HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}

.site-header.scrolled {
  background: rgba(247, 243, 237, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text);
}

.logo-sub {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-sec);
  letter-spacing: 0.04em;
}

/* Nav links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-right: 600px;
}

.header-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-sec);
  transition: color var(--ease);
}

.header-nav a:hover {
  color: var(--gold);
}

.header-nav .nav-whatsapp {
  color: var(--green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
}

.header-nav .nav-whatsapp:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--ease), opacity var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(247, 243, 237, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--ease);
}

.mobile-nav.open {
  max-height: 400px;
  padding: 16px 0 24px;
}

.mobile-nav a {
  display: block;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border);
  transition: color var(--ease), background var(--ease);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); background: rgba(201, 168, 106, 0.05); }

/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

/* Imagen de fondo en desktop: mitad derecha */
.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

/* Degradado que cubre la imagen para legibilidad del texto */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(247,243,237,0.98) 0%,
        rgba(247,243,237,0.85) 35%,
        rgba(247,243,237,0.20) 55%,
        rgba(247,243,237,0.03) 70%,
        transparent 100%
    );
}

/* Contenido del hero */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding-top: var(--pad-desk);
  padding-bottom: var(--pad-desk);
  margin-left: 120px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

..hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: #5c5c5c;
    max-width: 700px;
}
.hero-note{
    margin-top:24px;
    margin-bottom:50px;
    font-size:15px;
    line-height:1.6;
    color:var(--gold);
    font-style:italic;
    opacity:.85;
}.

..hero-title em {
    font-style: italic;
    color: #c9a86a;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-sec);
  margin-bottom: 20px;
  line-height: 1.45;
}

.hero-text {
    font-size: 18px;
    line-height: 1.9;
    color: #4b4b4b;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Indicador scroll */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: var(--gold);
  opacity: 0.5;
  animation: scrollLine 2s ease infinite;
  margin: 0 auto;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   7. PROBLEMA
   ============================================================ */
.section-problema {
  padding: var(--section-gap-desk) 0;
  background: var(--white);
}

.section-problema .container {
  max-width: 760px;
  text-align: center;
}

.section-problema .section-label { margin-bottom: 10px; }

.section-problema .section-title {
  margin-bottom: 52px;
}

.problema-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problema-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
  color: var(--text-sec);
  padding: 22px 28px;
  background: var(--bg);
  border-radius: 16px;
  border-left: 3px solid var(--gold);
  transition: transform var(--ease), box-shadow var(--ease);
}

.problema-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.problema-icon {
  color: var(--gold);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================================
   8. SOLUCIÓN
   ============================================================ */
.section-solucion {
  padding: var(--section-gap-desk) 0;
  background: var(--bg);
}

.solucion-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.solucion-text .section-title {
  margin-bottom: 20px;
}

.solucion-desc {
  color: var(--text-sec);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 480px;
}
.solucion-frase {
    color: var(--gold);
    font-size: 20px;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 40px;
}

.solucion-desc strong {
  color: var(--gold);
  font-weight: 600;
}

/* Círculo decorativo */
.solucion-deco {
  flex-shrink: 0;
}

.deco-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	position: relative;

    background: linear-gradient(
        135deg,
        rgba(201,168,106,0.08),
        transparent
    );

    animation:
        respirar 4s ease-in-out infinite,
        haloDorado 5s ease-in-out infinite;
		
}


.deco-number {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 300;
    color: var(--gold);
    line-height: 0.9;
}

.deco-dias {
    font-size: 12px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-top: -8px;
}
.deco-extra {
    display: block;
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    line-height: 1.4;
    max-width: 140px;
}
@keyframes respirar {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

@keyframes haloDorado {
    0%,100% {
        box-shadow: 0 0 0 rgba(201,168,106,0);
    }

    50% {
        box-shadow: 0 0 35px rgba(201,168,106,0.18);
    }
}

/* ============================================================
   9. MAPA DEL TESORO
   ============================================================ */
.section-mapa {
  padding: var(--section-gap-desk) 0;
  background: var(--white);
  text-align: center;
}

.section-mapa .section-label,
.section-mapa .section-title {
  text-align: center;
}

.mapa-image-wrap {
  max-width: 900px;
  margin: 48px auto 0;
}

.mapa-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-img);
  object-fit: contain;
}

/* ============================================================
   10. LOGROS
   ============================================================ */
.section-logros {
  padding: var(--section-gap-desk) 0;
  background: var(--bg);
  text-align: center;
}

.section-logros .section-label,
.section-logros .section-title {
  text-align: center;
}

.logros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.logro-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 44px 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
  border: 1px solid var(--border);
}

.logro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
}

.logro-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.logro-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}

.logro-desc {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ============================================================
   11. QUÉ INCLUYE
   ============================================================ */
.section-incluye {
  padding: var(--section-gap-desk) 0;
  background: var(--text);
}

.section-incluye .section-label {
  color: var(--gold);
}

.section-incluye .section-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 56px;
}

.section-incluye .section-label {
  text-align: center;
}

.incluye-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.incluye-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 32px;
    background: rgba(255,255,255,0.03);
    gap: 10px;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.incluye-item strong {
    color: var(--gold);
    font-weight: 700;
}

.incluye-item::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 32px;
    width: 50px;
    height: 2px;
    background: var(--gold);
    opacity: 0.8;
}

.incluye-item:hover {
    background: rgba(201,168,106,0.08);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(201,168,106,0.15);
}

.incluye-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.incluye-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}
.incluye-item p {
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.7;
    margin-top: 14px;
}
.incluye-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,106,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.incluye-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.incluye-item p em {
  color: var(--gold);
  font-style: italic;
}

/* ============================================================
   12. BONUS
   ============================================================ */
.section-bonus {
  padding: var(--section-gap-desk) 0;
  background: var(--bg);
}

.bonus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.bonus-image-wrap {
  position: relative;
}

.bonus-img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-img);
  object-fit: cover;
}

.bonus-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.bonus-text .section-title {
  margin-bottom: 20px;
}

.bonus-desc {
  color: var(--text-sec);
  font-size: 17px;
  line-height: 1.75;
}

/* ============================================================
   13. PARA QUIÉN ES / NO ES
   ============================================================ */
.section-para-quien {
  padding: var(--section-gap-desk) 0;
  background: var(--white);
  text-align: center;
}

.section-para-quien .section-label,
.section-para-quien .section-title {
  text-align: center;
}

.para-quien-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  text-align: left;
}

.para-quien-card {
    border-radius: var(--radius-card);
    padding: 50px 44px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    border-top: 5px solid var(--gold);
}

.para-quien-card.es {
    background: #FFFFFF;
}

.para-quien-card.no {
    background: #F3EEE7;
}

.pq-card-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.pq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pq-list li {
  font-size: 16px;
  color: var(--text-sec);
  padding-left: 20px;
  position: relative;
}
.pq-list strong {
    color: var(--gold-dark);
    font-weight: 700;
}

.pq-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pq-list.no-list li::before {
  content: '—';
  color: var(--border);
}

/* ============================================================
   14. FUNDADORA
   ============================================================ */
.section-fundadora {
  padding: var(--section-gap-desk) 0;
  background: var(--bg);
}

.fundadora-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.fundadora-image-wrap {
    width: 380px;
    flex-shrink: 0;

    position: relative;
}

.fundadora-image-wrap::before {
    content: "";
    position: absolute;
    inset: -12px;

    border: 1px solid rgba(201,168,106,.20);
    border-radius: calc(var(--radius-card) + 12px);

    pointer-events: none;
}

.fundadora-img {
    width: 100%;
    border-radius: var(--radius-card);
    object-fit: cover;

    border: 1px solid rgba(201,168,106,.25);

    box-shadow:
        0 12px 35px rgba(0,0,0,.10),
        0 0 25px rgba(201,168,106,.12);
}
.fundadora-autoridad {
    margin-top: 12px;
    margin-bottom: 28px;

    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--gold);
    opacity: 0.9;
}

.fundadora-text .section-title {
  margin-bottom: 20px;
}

.fundadora-desc {
  color: var(--text-sec);
  font-size: 17px;
  margin-bottom: 20px;
}

.fundadora-quote {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0;
  line-height: 1.5;
}

/* ============================================================
   15. GARANTÍA
   ============================================================ */
.section-garantia {
  padding: var(--section-gap-desk) 0;
  background: var(--white);
}

.garantia-inner{
    display:grid;
    grid-template-columns: minmax(500px, 700px) 240px;
    gap:50px;
    align-items:center;
    justify-content:center;
}

.garantia-image-wrap{
    width:180px;
    justify-self:center;
}

.garantia-img {
    width: 100%;
    border-radius: 50%;
    box-shadow:
        0 15px 40px rgba(201,168,106,.12);
}

.garantia-text{
    order:1;
}

.garantia-image-wrap{
    order:2;
}
.garantia-puntos{
    margin-top: 24px;
    line-height: 2;
    color: var(--text);
    font-size: 18px;
}

.garantia-frase{
    margin-top: 28px;
    color: var(--gold);
    font-style: italic;
    font-size: 28px;
    line-height: 1.5;
}

.garantia-badge {
  display: inline-block;
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.garantia-text .section-title {
  margin-bottom: 20px;
}

.garantia-desc {
  color: var(--text-sec);
  font-size: 17px;
  line-height: 1.75;
}

.garantia-desc strong {
  color: var(--gold);
}

/* ============================================================
   16. TESTIMONIOS
   ============================================================ */
.section-testimonios {
  padding: var(--section-gap-desk) 0;
  background: var(--bg);
  text-align: center;
}

.section-testimonios .section-label,
.section-testimonios .section-title {
  text-align: center;
}

/* Carrusel */
.carousel-wrap {
  position: relative;
  max-width: 700px;
  margin: 52px auto 0;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  min-height: 320px;
}

.carousel-slide {
  display: none;
  width: 100%;
}

.carousel-slide.active {
  display: block;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-img);
}

/* Flechas */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   17. PRECIO
   ============================================================ */
.section-precio {
  padding: var(--section-gap-desk) 0;
  background: var(--white);
  text-align: center;
}

.section-precio .section-label,
.section-precio .section-title {
  text-align: center;
}

.precio-card {
  max-width: 560px;
  margin: 52px auto 0;
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 56px 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.precio-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.precio-monto {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  line-height: 1;
}

.precio-currency {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-sec);
  margin-top: 12px;
}

.precio-valor {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.precio-desc {
  font-size: 15px;
  color: var(--text-sec);
  margin-bottom: 36px;
  line-height: 1.65;
}
.precio-argentina{
    background:#f6efe3;
    border:1px solid #d8be88;
    border-radius:16px;
    padding:24px;
    margin-top:24px;
}

.precio-separador{
    text-align:center;
    margin-bottom:20px;
    color:var(--text-sec);
    font-size:14px;
}

.precio-local{
    text-align:center;
}

.precio-ars{
    font-size:32px;
    font-weight:700;
    color:var(--gold-dark);
    margin-bottom:12px;
}

.precio-o{
    margin:10px 0;
    font-style:italic;
}

.precio-cuotas{
    font-size: 18px;
    color: var(--text-sec);
    font-weight: 500;
}

.precio-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.precio-garantia {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-sec);
  letter-spacing: 0.06em;
}
.precio-opcion{
    margin:18px 0;
}

.precio-nota{
    font-size:14px;
    color:#7a7a7a;
    margin-top:6px;
}

.precio-arg-valor-secundario{
    font-size:34px;
    font-weight:700;
    color:#444;
    margin-top:8px;
}

/* ============================================================
   18. FAQ
   ============================================================ */
.section-faq {
  padding: var(--section-gap-desk) 0;
  background: var(--bg);
}

.section-faq .container {
  max-width: 760px;
}

.section-faq .section-label,
.section-faq .section-title {
  text-align: center;
}

.faq-list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--ease);
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  gap: 16px;
  transition: color var(--ease);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--ease);
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   19. CTA FINAL
   ============================================================ */
.section-cta-final {
  position: relative;
  padding: var(--section-gap-desk) 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(43, 43, 43, 0.82) 40%,
    rgba(43, 43, 43, 0.55) 70%,
    rgba(43, 43, 43, 0.3) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  transition-delay: var(--d, 0s);
}

.cta-subtitle.fade-up { transition-delay: var(--d, 0s); }

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--ease);
}

.footer-social:hover { color: var(--gold); }

.footer-web {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.footer-web:hover { color: var(--gold); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ============================================================
   21. WHATSAPP FLOTANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--ease), box-shadow var(--ease);
  animation: waPulse 3s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7); }
}

/* ============================================================
   22. RESPONSIVE · TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-img {
    width: 55%;
    opacity: 0.85;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      var(--bg) 40%,
      rgba(247, 243, 237, 0.75) 62%,
      transparent 100%
    );
  }

  .fundadora-image-wrap { width: 300px; }

  .logros-grid { gap: 20px; }

  .incluye-grid { grid-template-columns: repeat(2, 1fr); }

  .solucion-inner { gap: 40px; }
  .deco-circle { width: 340px; height: 340px; }
  .deco-number { font-size: 90px; }
}

/* ============================================================
   23. RESPONSIVE · TABLET (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .header-nav { display: none; }
  .hamburger  { display: flex; }
  .mobile-nav { display: flex; }

  /* Container padding */
  .container { padding: 0 20px; }

  /* Sections */
  .section-problema,
  .section-solucion,
  .section-mapa,
  .section-logros,
  .section-incluye,
  .section-bonus,
  .section-para-quien,
  .section-fundadora,
  .section-garantia,
  .section-testimonios,
  .section-precio,
  .section-faq,
  .section-cta-final {
    padding: var(--section-gap-tab) 0;
  }

  /* Tipografía */
  .section-title { font-size: 32px; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 48px;
    flex-direction: column;
  }

  .hero-img {
    position: relative;
    width: 100%;
    height: 340px;
    object-position: top center;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    margin-top: 32px;
    order: 2;
  }

  .hero-image-wrap {
    position: relative;
    width: 100%;
    order: 2;
    overflow: hidden;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
  }

  /* Sobreescribir el posicionamiento absoluto en móvil */
  .hero-image-wrap {
    position: relative;
    inset: unset;
  }

  .hero-img {
    position: relative;
    inset: unset;
    width: 100%;
    height: 300px;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    order: 1;
    padding-top: 0;
    padding-bottom: 24px;
    max-width: 100%;
  }

  .hero-title { font-size: 42px; }
  .hero-subtitle { font-size: 19px; }
  .hero-text { font-size: 16px; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .hero-scroll-indicator { display: none; }

  /* Solución */
  .solucion-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .solucion-deco {
    display: flex;
    justify-content: center;
  }

  /* Logros */
  .logros-grid { grid-template-columns: 1fr; }

  /* Incluye */
  .incluye-grid { grid-template-columns: 1fr 1fr; }

  /* Bonus */
  .bonus-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Para quién */
  .para-quien-grid { grid-template-columns: 1fr; }

  /* Fundadora */
  .fundadora-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .fundadora-image-wrap {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .fundadora-quote { text-align: left; }

  /* Garantía */
  .garantia-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .garantia-image-wrap {
    order: 1;
    width: 180px;
    margin: 0 auto;
  }
  .garantia-text { order: 2; }

  /* Precio */
  .precio-region{
    margin-top:12px;
    margin-bottom:28px;
    text-align:center;
    font-size:14px;
    font-weight:600;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--gold-dark);
}
  /* CTA Final */
  .cta-title { font-size: 40px; }
  .cta-buttons {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
}
  .cta-buttons .btn { width: 100%; justify-content: center; }

  /* Carrusel */
  .carousel-btn.prev { left: -10px; }
  .carousel-btn.next { right: -10px; }

  /* Footer */
  .footer-links { flex-direction: column; gap: 16px; }
}

/* ============================================================
   24. RESPONSIVE · MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {

  body { font-size: 16px; }

  .section-title { font-size: 28px; }

  .hero-title { font-size: 36px; }

  .incluye-grid { grid-template-columns: 1fr; }

  .logro-card { padding: 32px 24px; }

  .precio-card { padding: 32px 20px; }
  .precio-valor { font-size: 72px; }

  .faq-question { font-size: 17px; padding: 18px 20px; }
  .faq-answer   { padding: 0 20px; }
  .faq-item.open .faq-answer { padding: 0 20px 20px; }

  .btn-large { padding: 16px 28px; font-size: 13px; }

  .problema-list li { padding: 18px 20px; font-size: 16px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  .deco-circle { width: 140px; height: 140px; }
  .deco-number { font-size: 48px; }
}

/* ============================================================
   25. ACCESIBILIDAD
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .animate-in, .fade-up { opacity: 1; transform: none; }
}
/* === SOCIAL PROOF TOAST === */
.toast {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1999;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px 20px 16px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid #E8E1D7;
  max-width: 320px;
  width: calc(100vw - 56px);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.toast-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.toast-body {
  flex: 1;
  min-width: 0;
}

.toast-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2B2B2B;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-action {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #C9A86A;
  font-weight: 500;
  margin-top: 3px;
}

.toast-close {
  background: none;
  border: none;
  font-size: 13px;
  color: #E8E1D7;
  cursor: pointer;
  padding: 2px;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.toast-close:hover { color: #6B6B6B; }

@media (max-width: 480px) {
  .toast {
    bottom: 20px;
    left: 16px;
    right: 80px;
    width: auto;
    max-width: none;
  }
}